VhsClient Helper Objects

The VhsClient Object (and iterator methods) employ a library of helper request and response objects, which are used for passing in a request, getting a response back, and storing point properties and history values. Also included are other objects for defining history entries, statistics, history tag strings, and history values:

CxVhs Methods Request and Response Objects Other Support Objects
   

VhsClient Method

   

VhsDatastoreInterface Method

   

Request Object

   

Response Object

HistoryEntry HistoryEntryEx HistoryStats HistoryTagString HistoryTagStringEx ValueEntryEx
AddHistoryPoint AddHistoryPoint AddHistoryPointReq AddHistoryPointResp          
AddHistoryPointEx AddHistoryPointEx AddHistoryPointExReq AddHistoryPointExResp          
ContinueHistoryRead ContinueHistoryRead ContinueHistoryReadReq HistoryReadResp            
ContinueHistoryReadEx ContinueHistoryReadEx ContinueHistoryReadExReq HistoryReadExResp            
DeleteHistoryPoint DeleteHistoryPoint DeleteHistoryPointReq DeleteHistoryPointResp          
DeleteHistoryValueEx DeleteHistoryValueEx DeleteHistoryValueExReq DeleteHistoryValueExResp        
GetNamedArrayValues GetNamedArrayValues GetNamedArrayValuesReq GetNamedArrayValuesResp        
GetNamedArrayValuesEx GetNamedArrayValuesEx GetNamedArrayValuesExReq GetNamedArrayValuesExResp        
GetPointStats GetPointStats GetPointStatsReq GetPointStatsResp          
GetPointStatsEx GetPointStatsEx GetPointStatsExReq GetPointStatsExResp          
ListHistoryPointsEx ListHistoryPointsEx ListHistoryPointsExReq ListHistoryPointsExResp        
ListHistoryValuesEx ListHistoryValuesEx ListHistoryValuesExReq ListHistoryValuesExResp        
StartHistoryRead StartHistoryRead StartHistoryReadReq HistoryReadResp        
StartHistoryReadEx StartHistoryReadEx StartHistoryReadExReq HistoryReadExResp        
StoreHistoryList StoreHistoryList StoreHistoryListReq StoreHistoryListResp        
StorePointHistory StorePointHistory StorePointHistoryReq StorePointHistoryResp        
StorePointHistoryEx StorePointHistoryEx StorePointHistoryExReq StorePointHistoryExResp        
UpdateHistoryValueEx UpdateHistoryValueEx UpdateHistoryValueExReq UpdateHistoryValueExResp        

These objects are declared using, for example:

Set req = CreateObject("CxVhsLib.AddHistoryPointReq")

Set resp = CreateObject("CxVhsLib.AddHistoryPointResp")

Set tag = CreateObject("CxVhsLib.HistoryTagString")


More:

Back to top